home *** CD-ROM | disk | FTP | other *** search
XSetup plugin | 2001-03-28 | 1.1 KB | 46 lines |
- "FILE"="Xteq Systems X-Setup Plugin 6.0"
- "TYPE"="6"
- "COUNT"="1"
- "UIPATH"="Appearance\Explorer\Settings"
- "NAME"="Explorer Double Pane Display"
- "VERSION"="2.00"
- "LANGUAGE"="VBScript"
- "TEXT 1"="Always use double-pane Explorer style"
- "DESCRIPTION 1"="This option causes Windows Explorer to open with a double-pane view rather than the single-pane by default."
- "AUTHOR"="Xteq Systems"
- "CONTACTURL"="http://www.xteq.com"
- "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
- "COMMENT 1"=" "
-
-
- 'does anybody where this stuff comes from!?!?!?!
- 'AK: askSam(now)
- sExpPath="HKCR\Folder\Shell\Open\ddeexec\@"
- sExpDoub="[ExploreFolder(""%l"", %I, %S)]"
- sExpNorm="[ViewFolder(""%l"", %I, %S)]"
-
-
- Sub Plugin_Initialize
- s=RegReadValue(sExpPath)
- if ucase(s)=ucase(sExpDoub) then SetUIElement 1,true
- End Sub
-
- Sub Plugin_CheckData(ElementIndex)
- End Sub
-
- Sub Plugin_Apply(ElementIndex,ElementSubIndex)
- b=GetUIElement(1)
- if b=true then
- Call RegWriteValue(sExpPath,sExpDoub,1)
- else
- Call RegWriteValue(sExpPath,sExpNorm,1)
- end if
-
-
-
- Call IndicateSettingChange()
- End Sub
-
- Sub Plugin_Terminate
- End Sub
-